home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2001 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Editor
- @Method: getBookmarkCount() returns the number of bookmarks
- in this editor.
- @Syntax: editor.getBookmarkCount()
- @Summary: getBookmarkCount - returns the number of bookmarks
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("editor.getBookmarkCount();", selection);
- editor.setActive("Insert editor.getBookmarkCount");
- }
- }
-
- !!/Script
-